Es6 模块的导入和导出 Posted on 2020-10-30 | Edited on 2021-01-26 | In node.js b.js 12345678export function fun(){ console.log("fun1")}export let person = { name:"devin", age:12} c.js 12345678let a = 12let fun = function(){ console.log("function")}export default{ a,fun} index.html 123456789101112131415161718192021222324<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><script type="module" > // import * as util from './a.js'; // //import {fun, person} from "./a.js"; // console.log(util.fun(),util.person) // import a from './exportDefault'; // a.show(); // console.log(a.a); // import * as util from "./b.js" import c from "./c.js" // console.log(util.fun) console.log(c.a) c.fun() </script></body></html> Donate comment here Donate WeChat Pay